home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / cvs-1_3.lha / cvs-1.3 / contrib / Makefile.in < prev    next >
Makefile  |  1992-04-10  |  1KB  |  60 lines

  1. # Makefile for GNU CVS contributed sources.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. # @(#)Makefile.in 1.4 92/04/10
  20.  
  21. SHELL = /bin/sh
  22.  
  23. srcdir = @srcdir@
  24. @VPATH@
  25.  
  26. DISTFILES = Makefile.in README cln_hist.pl commit_prep.pl cvs_acls.pl \
  27.     cvscheck cvscheck.man cvshelp.man descend descend.man dirfns log.pl \
  28.     mfpipe.pl rcs-to-cvs sccs2rcs
  29.  
  30. all:
  31. .PHONY: all
  32.  
  33. install: all
  34. .PHONY: install
  35.  
  36. tags:
  37. .PHONY: tags
  38.  
  39. TAGS:
  40. .PHONY: TAGS
  41.  
  42. ls:
  43.     @echo $(DISTFILES)
  44. .PHONY: ls
  45.  
  46. clean:
  47.     /bin/rm -f *.o core
  48. .PHONY: clean
  49.  
  50. distclean: clean
  51.     rm -f Makefile
  52. .PHONY: distclean
  53.  
  54. realclean: distclean
  55. .PHONY: realclean
  56.  
  57. dist:
  58.     ln $(DISTFILES) ../`cat ../.fname`/contrib
  59. .PHONY: dist
  60.